home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / gfx / fract / lfracs.lha / LFracs-Source.lha / LFracs-Source / StdFuncs.h < prev    next >
C/C++ Source or Header  |  1996-12-17  |  645b  |  24 lines

  1. /* StdFuncs.h */
  2.  
  3. #define PI 3.1415927
  4. #define SetTitle(w,t)  SetWindowTitles((w),(t),(UBYTE *) -1)
  5. #define rnd(max) (rand() % ((max)+1))
  6.  
  7. #define INTUITION_LIB 1
  8. #define GRAPHICS_LIB  2
  9. #define DOS_LIB       4
  10. #define MATHFFP_LIB   8
  11. #define MATHTRANS_LIB 16
  12. #define ASL_LIB       32
  13. #define UTILITY_LIB   64
  14. #define GADTOOLS_LIB  128
  15. #define REQTOOLS_LIB  256
  16. #define LOCALE_LIB    512
  17.  
  18. void open_libs(short flags);
  19. void close_libs(void);
  20. struct Window *open_window(short x,short y,short w,short h,
  21.                            char *name,ULONG flags,ULONG idcmp,
  22.                            struct Gadget *gadget);
  23. void cls(struct Window *win);
  24.